projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7c38764
)
ARM: keystone2: spl: add K2E SoC support
author
Khoronzhuk, Ivan
<
[email protected]
>
Tue, 15 Jul 2014 21:59:26 +0000
(
00:59
+0300)
committer
Tom Rini
<
[email protected]
>
Fri, 25 Jul 2014 20:26:11 +0000
(16:26 -0400)
Keystone2 K2E SoC has slightly different spl pll settings then
K2HK, so correct this.
Acked-by: Murali Karicheri <
[email protected]
>
Signed-off-by: Ivan Khoronzhuk <
[email protected]
>
arch/arm/cpu/armv7/keystone/spl.c
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv7/keystone/spl.c
b/arch/arm/cpu/armv7/keystone/spl.c
index e07b64db9eecec89d41f6d44bb06fa1fa597ce42..d4b0e9b163e56581d9e57b2c91d8f4557a0926b1 100644
(file)
--- a/
arch/arm/cpu/armv7/keystone/spl.c
+++ b/
arch/arm/cpu/armv7/keystone/spl.c
@@
-18,10
+18,18
@@
DECLARE_GLOBAL_DATA_PTR;
+#ifdef CONFIG_K2HK_EVM
static struct pll_init_data spl_pll_config[] = {
CORE_PLL_799,
TETRIS_PLL_500,
};
+#endif
+
+#ifdef CONFIG_K2E_EVM
+static struct pll_init_data spl_pll_config[] = {
+ CORE_PLL_800,
+};
+#endif
void spl_init_keystone_plls(void)
{